home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #4
/
Amiga Plus CD - 2000 - No. 4.iso
/
Tools
/
WWW
/
Charon
/
Rexx
/
ChangeProxy.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
2000-03-23
|
258b
|
15 lines
/* Example: Changes proxy for all selected URLs */
NewProxy = "http://www.newproxy.net:8080/"
OPTIONS RESULTS
GETFIRSTURL SELECTED
ID=RESULT
DO WHILE ID ~= 0
SET 'ID ' || ID || ' PROXY ' || NewProxy
GETNEXTURL 'ID ' || ID || ' SELECTED'
ID=RESULT
END